 .brand-name {
  font-weight: bold;
  color: #162430 ; 
  font-size: 24px;
  line-height: 50px;
  vertical-align: middle;
}

.navbar-brand {
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    margin-right: 10px;
  }

.navbar-nav .nav-link {
  font-size: 18px; /* Ukuran teks di menu */
}

.navbar-brand img {
  margin-right: 10px; /* Spasi antara logo dan teks */
}

.navbar-nav .nav-link.active {
    background-color:#3499D5    ; /* Biru */
    color: white;
    border-radius: 5px;
    padding: 8px 16px;
  }
  
  .navbar-nav .nav-link {
    color: #162430    ; /* Warna link default */
  }
  
  .navbar-nav .nav-link:hover {
    color:#162430;    /* Warna link saat hover */
    background-color:#60baee ;
    border-radius: 5px;
  }
  
  .navbar-nav .nav-item {
    margin-left: 15px; /* Jarak antara menu di sebelah kiri */
  }
  #carousel {
    position: relative;
  }
  

/* PROFIL*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}

.profile-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-container h1 {
  text-align: center; /* Menjadikan teks rata tengah */
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  max-width: 500px;
  margin: 20px auto;
  padding: 10px;
  background-color: #e9e9e9 ;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5 , #ddd);
}

.profile-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.profile-image {
  flex: 1;
}

.profile-image img {
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-text {
  flex: 2;
  line-height: 1.6;
  text-align: left;
}

.profile-text p {
  margin-bottom: 15px;
  text-align: justify;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .profile-content {
      flex-direction: column;
      align-items: center;
  }

  .profile-image {
      margin-bottom: 20px;
  }

  .profile-text {
      text-align: center;
  }
}


/* server Section CSS */
:root{
  --darkgray: #212329;
  --lightgray: #b1b1b1;
  --brightred: #f9423d;
  --white: #fff;
  --lightred: #f9433dcc;
  --lightblue: #337af1;
}
.services-section{
  text-align: justify;
  max-width: 1200px;
  margin: 5px auto;
  padding: 5px;
  border-radius: 8px;
  width: auto;
  height: auto;
  padding-bottom: 1rem;
  padding: 50px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-heading{
  color: var(--white);
  text-align: center;
  margin-bottom: -3rem;
  padding-top: -10rem;

}

.services-section h1{
  text-align: center; /* Menjadikan teks rata tengah */
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  max-width: 300px;
  margin: 20px auto;
  padding: 10px;
  background-color: #ffffff ;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5 , #ddd);
}

.services{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0px auto;
  transform: translateY(80px);
  padding-top: 10px;
  padding-bottom: -20px;
  color: #333;
  margin: 50px auto;
  height: auto;
  border-radius: 20px;
}

.services-cell{
  flex: 0 1 250px;
  max-width: 250px;
  height: 275px;
  margin: 2px;
  position: relative;
  text-align: center;
  z-index: 1;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.8);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%,0% 75%, 0% 25%);
  cursor: pointer;
}
.services-cell_img{
   object-fit: cover;
   object-position: center;
}

.services-cell_text{
   height: 100%;
   width: 60%;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-transform: uppercase;
   color: var(--white);
   font-weight: 700;
   font-size: 1rem;
   transition: opacity 350ms;
   text-shadow: 2px 2px 2px var(--darkgray);
}

.services-cell::before, .services-cell::after, .services-cell_img{
   top: -50%;
   width: 100%;
   height: 200%;
   display: block;
   position: absolute;
   clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
   z-index: -1;
}

.services-cell:hover{
   opacity: 1;
   transition: all 0.3s ease-in-out;
   transform: scale(1.2);
   z-index: 99;
   overflow: hidden;
}

.services-cell:before{
  content: '';
  position: absolute;
  opacity: 0.4;
  height: 70px;
  background: var(--white);
  top: 50;
  left: 0;
  z-index: 1;
  transform: rotate(45deg);
  transition: transform 1.5s;
}

.services-cell:hover:before{
  transform: translate(-100px, 600%) rotate(45deg);
  transition: transform 0.5s;
}

/*Responsive*/

@media screen and (min-width: 825px) and (max-width: 1100px) {
  .services-cell:nth-child(4){
      top: -70px;
      margin-left: calc(50% - 275px);
  }

  .services-cell:nth-child(5) {
      margin-right: calc(50% - 275px);
      position: relative;
      top: -70px;
  }

  .services-cell:nth-child(6) {
      margin-left: calc(50% - 530px);
      top: -140px;
  }
  .services-cell:nth-child(7) {
      margin-right: calc(50% - 275px);
      top: -140px;
  }
}

@media screen and (min-width: 1100px){
  .services-cell:nth-child(n + 5) {
      position: relative;
      top: -70px;
  }
}

@media screen and (max-width: 550px){
  .services-cell{
      margin: 50px 25px;
  }
}


/*Visi-Misi*/
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.misi_container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center; /* Menjadikan teks rata tengah */
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  max-width: 300px;
  margin: 20px auto;
  padding: 10px;
  background-color: #ffffff ;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5 , #ddd);
}

.content {
  display: none;
}

h2 {
  color: #007bff;
  text-align: center;
}

ul {
  list-style-type: disc;
  padding-left: 20px;

}

p {
  text-align: center;
}

p, li {
  color: #555;
  
}

/*Struktur*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}

.stuktur__container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stuktur__container h1 {
  text-align: center; /* Menjadikan teks rata tengah */
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
  max-width: 300px;
  margin: 20px auto;
  padding: 10px;
  background-color: #ffffff ;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5 , #ddd);
}

.content {
  margin-bottom: 20px;
}

.division-item {
  padding: 15px;
  border: 1px solid #007bff;
  border-radius: 10px;
  background-color: #f1f9ff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.navigation {
  text-align: center;
  margin-top: 20px;
}

.navigation button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.navigation button:hover {
  background-color: #0056b3;
}


/* Tabel*/

.container_asesor {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.show-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.show-btn:hover {
  background-color: #0056b3;
}

.container_asesor h1 {
  color: #333;
  margin-bottom: 30px;
  font-size: 20px;
  padding-bottom: 10px;
  background-color: #ffffff ;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5, #ddd);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table, th, td {
  border: 2px solid #333;
}
tr, td {
  padding: 15px;
  text-align: center;
}

th {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  th, td {
      padding: 10px;
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  th, td {
      padding: 8px;
      font-size: 12px;
  }
}

/* TUK*/
.container_tuk {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.container_tuk h1 {
  text-align: center;
  font-size: 20px;
  color: #333;
  padding-bottom: 10px;
  background-color: #ffffff ;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3499D5, #ddd);
}

.location-section {
  margin-bottom: 20px;
}

.location-section h2 {
  background-color: #007bff;
  font-size: 20px;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin: 0;
  text-align: center;
}

.tuk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tuk-list li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
  transition: background-color 0.3s;
}

.tuk-list li:hover {
  background-color: #f0f0f0;
}

.toggle-button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #0056b3;
  color: white;
  font-size: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.toggle-button:hover {
  background-color: #0056b3;
}

.hidden {
  display: none;
}

.show {
  display: block;
}

/* bagian didukung oleh*/
.support-section h2 {
  margin-bottom: 30px;
  font-weight: bold;
  color: #212329;
}

.support-section img {
  max-width: 80px; /* Ukuran maksimal logo */
  height: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-lg-2 {
  flex: 0 0 auto;
  width: 10%; /* Maksimal 10 logo per baris */
}


@media (min-width: 992px) {
  .col-lg-2 {
      max-width: 10%; /* Maksimal 10 logo per baris pada layar besar */
  }
}

@media (max-width: 991px) {
  .col-md-3 {
      flex: 0 0 20%; /* Atur ukuran logo di layar medium */
  }
}

@media (max-width: 767px) {
  .col-6 {
      flex: 0 0 50%; /* Atur ukuran logo di layar kecil */
  }
}

/*footer*/

/* CSS untuk container footer */
.container__footer {
  background-color: #212329; /* Contoh warna background footer */
  padding: 20px 0; /* Menambahkan padding atas dan bawah */
}

/* CSS untuk ikon sosial media */
.social-icons {
  display: flex;
  justify-content: center; /* Memusatkan ikon secara horizontal */
  align-items: center; /* Memusatkan ikon secara vertikal dalam baris */
  flex-wrap: wrap; /* Membiarkan ikon membungkus baris baru jika perlu */
  gap: 15px; /* Menambahkan jarak antara ikon */
  margin: 0; /* Menghilangkan margin default untuk menghindari jarak tambahan */
  padding: 0; /* Menghilangkan padding default untuk menghindari jarak tambahan */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; /* Ukuran ikon */
  height: 3rem; /* Ukuran ikon */
  font-size: 1.5rem; /* Ukuran font ikon */
  color: rgb(0, 0, 0); /* Warna default ikon */
  background-color: rgba(255, 255, 255, 0.2); /* Warna latar belakang default */
  border-radius: 50%; /* Membuat ikon berbentuk bulat */
  transition: color 0.3s, background-color 0.3s; /* Transisi efek hover */
  text-decoration: none; /* Menghilangkan garis bawah pada link */
}

.social-icons a:hover {
  color: #a80000; /* Warna ikon saat hover */
  background-color: rgba(255, 255, 255, 0.5); /* Warna latar belakang saat hover */
}

/* Responsif pada layar kecil */
@media (max-width: 576px) {
  .social-icons a {
    width: 2.5rem; /* Ukuran ikon lebih kecil pada layar kecil */
    height: 2.5rem; /* Ukuran ikon lebih kecil pada layar kecil */
    font-size: 1.25rem; /* Ukuran font ikon lebih kecil pada layar kecil */
  }
}

@media (max-width: 768px) {
  .social-icons a {
    width: 2.75rem; /* Ukuran ikon disesuaikan pada layar medium */
    height: 2.75rem; /* Ukuran ikon disesuaikan pada layar medium */
    font-size: 1.4rem; /* Ukuran font ikon disesuaikan pada layar medium */
  }
}


.foot p {
  color:#ddd;
}


